6acee5fd8070c96555bcfb548baa9aca501fcdd9,findbugs/src/java/edu/umd/cs/findbugs/CountBugs2.java,CountBugs2,main,#String[]#,160

Before Change


		
		CountBugs2 countBugs = new CountBugs2(bugCollection);
		countBugs.setAbbrevs(commandLine.getAbbrevs());
		countBugs.setCategories(commandLine.getCategories());
		countBugs.setMinPriority(commandLine.getMinPriority());
		
		countBugs.execute();

After Change


		CountBugs2 countBugs = new CountBugs2(bugCollection);
		if (commandLine.getAbbrevs() != null)
			countBugs.setAbbrevs(commandLine.getAbbrevs());
		if (commandLine.getCategories() != null)
			countBugs.setCategories(commandLine.getCategories());
		countBugs.setMinPriority(commandLine.getMinPriority());
		
		countBugs.execute();